From: Gabor Juhos Date: Fri, 26 Jul 2013 07:32:00 +0000 (+0000) Subject: firmware-utils/mktplinkfw: add support for the TL-MR10U board X-Git-Url: http://git.openwrt.org/%22http:/oss.oetiker.ch/rrdtool//%22/%22http:/oss.oetiker.ch/rrdtool/%22?a=commitdiff_plain;h=d7d5498c1eb7d8f242611a5b4efeef69aad2aa15;p=project%2Ffirmware-utils.git firmware-utils/mktplinkfw: add support for the TL-MR10U board Based on andelf's patch: http://andelf.diandian.com/post/2013-05-22/40050677370 Signed-off-by: Oleg Titov Patchwork: http://patchwork.openwrt.org/patch/3840/ Signed-off-by: Gabor Juhos SVN-Revision: 37549 --- diff --git a/src/mktplinkfw.c b/src/mktplinkfw.c index 74a55fd..19dc2b4 100644 --- a/src/mktplinkfw.c +++ b/src/mktplinkfw.c @@ -30,6 +30,7 @@ #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); }) #define HEADER_VERSION_V1 0x01000000 +#define HWID_TL_MR10U_V1 0x00100101 #define HWID_TL_MR3020_V1 0x30200001 #define HWID_TL_MR3220_V1 0x32200001 #define HWID_TL_MR3220_V2 0x32200002 @@ -193,6 +194,11 @@ static struct flash_layout layouts[] = { static struct board_info boards[] = { { + .id = "TL-MR10Uv1", + .hw_id = HWID_TL_MR10U_V1, + .hw_rev = 1, + .layout_id = "4Mlzma", + }, { .id = "TL-MR3020v1", .hw_id = HWID_TL_MR3020_V1, .hw_rev = 1,